'Declaration Public Overridable Function AsFiltered( _ ByVal predicate As Expression(Of Func(Of T,Boolean)) _ ) As ClientView(Of T)
public virtual ClientView<T> AsFiltered( Expression<Func<T,bool>> predicate )
Parameters
- predicate
- A function to apply each element to test the condition.
Return Value
A client view that contains elements of this view that satisfy the predicate.